home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
rpcdcpro
/
rpc_msg.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-12-02
|
494b
|
29 lines
#ifndef _RPCMSG_INCLUDED
#define _RPCMSG_INCLUDED
#include <stdlib.h>
#define MAX_BUF_SIZE 8192
class RPC_MSG {
public:
#ifdef _RPCDC
__declspec(dllexport)
#endif
void autoinit ();
#ifdef _RPCDC
__declspec(dllexport)
#endif
RPC_MSG ();
int running;
size_t bufsize; // Taille du buffer en cours
char buffer[MAX_BUF_SIZE]; // Buffer temporaire
};
#endif